home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20020314-20021006 / 000210_fdc@columbia.edu_Fri Jul 12 17:22:06 EDT 2002.msg < prev    next >
Text File  |  2002-10-06  |  2KB  |  46 lines

  1. Article: 13518 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Security too tight on VMS
  6. Date: 12 Jul 2002 17:21:54 -0400
  7. Organization: Columbia University
  8. Lines: 29
  9. Message-ID: <agnh9i$m4o$1@watsol.cc.columbia.edu>
  10. References: <3D2F4541.C3C282FC@ford.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1026508915 8093 128.59.39.139 (12 Jul 2002 21:21:55 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 12 Jul 2002 21:21:55 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13518
  16.  
  17. In article <3D2F4541.C3C282FC@ford.com>,
  18. Jack Patteeuw  <jpatteeu@ford.com> wrote:
  19. : We have a captive account on VMS that runs C-Kermit 8.0.201.
  20. : The login.com is as follows
  21. :     $ SET DEFAULT DEVICE:[DIRECTORY]
  22. :     $ DEFINE/USER SYS$INPUT SYS$COMMAND
  23. :     $ KERMIT "-H" "-E" "-q" "-x"
  24. :     $ EXIT
  25. : SYS$LOGIN:CKERMIT.INI contains the following
  26. :     enable get
  27. :       ...
  28. :     disable send
  29. : Obviously the only thing we want the use to do is use the GET command !!
  30. : The problem is, the user is receiving the error "insufficient privilege or
  31. : file protection violation".  Deleting CKERMIT.INI eliminates this problem.
  32. : Why ?
  33. DISABLE and ENABLE are from the server's point of view, not the client's.
  34. You probably want DISABLE GET (don't let the server GET -- i.e. receive
  35. files) and ENABLE SEND (let it send files).
  36.  
  37. - Frank
  38.